home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / timeConstants.c < prev    next >
C/C++ Source or Header  |  1988-06-27  |  2KB  |  49 lines

  1. /* 
  2.  * timeConstants.c --
  3.  *
  4.  *    Definitions of variables providing frequently-used time values.
  5.  *
  6.  * Copyright 1986, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: timeConstants.c,v 1.2 88/06/27 17:23:43 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <spriteTime.h>
  22.  
  23. Time time_ZeroSeconds        = {        0,      0 };
  24. Time time_OneMicrosecond    = {        0,      1 };
  25. Time time_OneMillisecond    = {        0,   1000 };
  26. Time time_TenMilliseconds    = {        0,  10000 };
  27. Time time_HundredMilliseconds    = {        0, 100000 };
  28. Time time_HalfSecond        = {        0, 500000 };
  29. Time time_OneSecond        = {        1,      0 };
  30. Time time_TwoSeconds        = {        2,      0 };
  31. Time time_TenSeconds        = {       10,      0 };
  32. Time time_OneMinute        = {       60,      0 };
  33. Time time_OneHour        = {     3600,      0 };
  34. Time time_OneDay        = {    86400,      0 };
  35. Time time_OneYear        = { 31536000,      0 };
  36. Time time_OneLeapYear        = { 31622400,      0 };
  37. Time_Parts time_ZeroParts    = {
  38.     0,         /* year     */
  39.     0,         /* month     */
  40.     0,         /* dayOfYear     */
  41.     0,         /* dayOfMonth     */
  42.     0,         /* dayOfWeek     */
  43.     0,        /* hours     */
  44.     0,        /* minutes     */
  45.     0,        /* seconds     */
  46.     0,         /* localOffset     */
  47.     FALSE,     /* is DST?    */
  48. };
  49.